Welcome![Sign In][Sign Up]
Location:
Search - udp http

Search list

[P2PP2PChatPlus 终结版

Description:

第一个版本发布已经有将近半年的时间,在这段时间里面发生了很多事情,让我很长时间都难以安下心来写程序。我是酷爱写程序的,但是当她变成谋生手段的时候,时常会无比的艰涩。有时候压力不仅仅来自困难的问题本身。  说说程序本身吧,其实第一个版本只是实现了P2P的一小部分,而后一直不断的完善,到了第三个版本,我才算是彻底理解了UDP实现跨网关P2P,当然,这个版本也并不是完善的。比如说:在没有回朔功能的网关下两台计算机无法通信,没有对数据包进行完整性的判断……。其实事情总没有完善的时候吧。  程序只是实现了基本的基于UDP穿NAT的P2P,其他还有TCP和UPNP等等的就等大家一起研究吧。  写程序的过程中,在网上查了很多东西,绝大多数都是在互相抄啊抄的。其实问题也就是这么一点,没有必要长篇累牍的论述,可能我比较笨,理解的太慢了。时常感觉就差那么一点点,有人提点一下就好了,可是始终我都没有找到这样的人。  所有的东西都在“连接过程.doc”里面可以找到,程序本身也就是实现了图上面的流程。在这个过程的基础上,完全可以实现一个基于UDP的P2P开发包,不过有时间再说吧……   我的联系方式:  MSN: m820126@163.com   Email: m820126@163.com   http://www.cwind.cn   有问题可以来问我,不过我平时事情比较多,如果不能一一回答也请见谅了。之前一直有人问TMMessageMemo找不到,其实这是我自己的开发包里面一个小组件,仅仅是用来显示消息的,如果你稍微用心地读一下代码,就会发现用一个Memo就可以替换掉了。这次为了避免再有这样的事情出现,我把“MMessageMemo.pas”一起打包进来了,自己装一下吧,如果你连安装组件都不会……我就不说什么了。


Platform: | Size: 461273 | Author: AaronMing | Hits:

[JSPJava 实用系统开发指南JavaPractice

Description: ·VI· 目 录 前言 第1章 高性能聊天系统...................................................................................................1 1.1 系统需求...........................................................................................................1 1.2 架构设计...........................................................................................................2 1.2.1 Java事件模型.....................................................................................................2 1.2.2 架构设计图.......................................................................................................5 1.2.3 协议设计.........................................................................................................5 1.2.4 多线程...........................................................................................................6 1.2.5 线程池...........................................................................................................9 1.2.6 非堵塞I/O........................................................................................................11 1.3 Socket核心设计和实现...............................................................................................13 1.3.1 TCP和Reactor模式.................................................................................................14 1.3.2 UDP实现..........................................................................................................19 1.3.3 客户端实现.......................................................................................................22 1.4 Socket接口设计和实现..............................................................................................28 1.4.1 队列和对象类型..................................................................................................28 1.4.2 访问者模式定义..................................................................................................32 1.4.3 访问者模式实现..................................................................................................36 1.4.4 协议封装........................................................................................................39 1.4.5 重整Refactoring.................................................................................................41 1.5 应用接口设计和实现................................................................................................45 1.5.1 Connection API..................................................................................................46 1.5.2 ConnectionFactory API...........................................................................................49 1.5.3 TcpConnection API...............................................................................................53 1.5.4 UdpConnection API...............................................................................................54 1.6 应用层设计和实现..................................................................................................56 1.6.1 客户端聊天测试..................................................................................................56 1.6.2 服务器聊天测试..................................................................................................58 1.7 性能测试..........................................................................................................59 1.8 小结..............................................................................................................61 第2章 简单的用户注册系统..............................................................................................62 2.1 需求分析............................................................................................................62 2.2 系统设计............................................................................................................62 2.2.1 JSP/Servlet与J2EE.................................................................................................63 2.2.2 结构设计图........................................................................................................64 2.2.3 JSP/JavaBeans技术要点.............................................................................................65 2.2.4 JDBC和连接池......................................................................................................68 2.2.5 数据库设计........................................................................................................70 2.3 类的详细设计和实现..................................................................................................71 2.3.1 Facade模式........................................................................................................71 2.3.2 JDBC通用操作类....................................................................................................73 2.3.3 E-mail发送通用类..................................................................................................78 2.3.4 用户资料管理......................................................................................................79 2.3.5 密码数据操作类....................................................................................................83 2.3.6 登陆验证功能......................................................................................................85 2.4 界面编程实现........................................................................................................87 2.4.1 登陆验证页面......................................................................................................87 2.4.2 注册页面..........................................................................................................88 2.5 调试、发布和运行....................................................................................................90 2.5.1 单元测试..........................................................................................................91 2.5.2 快速配置开发环境..................................................................................................92 2.5.3 Tomcat配置和调试..................................................................................................93 2.5.4 Tomcat连接池使用..................................................................................................95 2.6 Hibernate使用.......................................................................................................99 2.7 小结................................................................................................................103 第3章 Jive论坛系统.....................................................................................................107 3.1 Jive功能需求.......................................................................................................107 3.2 Jive与设计模式.....................................................................................................108 3.2.1 设计模式.........................................................................................................109 3.2.2 ForumFactory与工厂模式...........................................................................................109 3.2.3 统一入口与单态模式...............................................................................................113 3.2.4 访问控制与代理模式...............................................................................................114 3.2.5 批量分页查询与迭代模式...........................................................................................115 3.2.6 过滤器与装饰模式.................................................................................................120 3.2.7 主题监测与观察者模式.............................................................................................124 3.3 Jive安全管理机制...................................................................................................128 3.3.1 安全验证机制.....................................................................................................129 3.3.2 用户资料管理.....................................................................................................132 3.4 Jive的缓存机制.....................................................................................................133 3.4.1 缓存原理和实现...................................................................................................133 3.4.2 缓存使用.........................................................................................................136 3.4.3 小结.............................................................................................................139 3.5 Jive的其他组件技术.................................................................................................140 3.5.1 Jive的树形结构...................................................................................................140 3.5.2 XML和JDOM........................................................................................................143 3.5.3 全文检索和Lucene.................................................................................................147 3.5.4 Jive的中文问题...................................................................................................152 3.6 Jive图形处理.......................................................................................................154 3.6.1 图片上传处理.....................................................................................................154 3.6.2 服务器端图形处理.................................................................................................157 3.7 Jive安装调试运行...................................................................................................159 3.8 小结...............................................................................................................160 第4章 网站内容管理系统.................................................................................................161 4.1 需求分析...........................................................................................................161 4.2 架构设计...........................................................................................................162 4.2.1 系统架构图.......................................................................................................163 4.2.2 MVC模式和Struts..................................................................................................164 4.2.3 DBO模式和Castor..................................................................................................167 4.2.4 Cache设计........................................................................................................172 4.3 详细设计和实现.....................................................................................................173 4.3.1 基本对象设计.....................................................................................................173 4.3.2 数据模型的实现...................................................................................................174 4.3.3 抽象工厂(Abstract Factory)模式...................................................................................175 4.3.4 生成器(Builder)模式..............................................................................................180 4.4 表现层的实现.......................................................................................................187 4.4.1 Strut相关设置....................................................................................................187 4.4.2 创建PageForm.....................................................................................................189 4.4.3 创建PageAction...................................................................................................192 4.4.4 创建page.jsp页面.................................................................................................194 4.4.5 自定义标签库.....................................................................................................196 4.4.6 创建SavePageAction...............................................................................................199 4.4.7 Tile模板.........................................................................................................201 4.4.8 创建cmsMenu.jsp..................................................................................................203 4.4.9 创建index.jsp....................................................................................................203 4.4.10 小技巧..........................................................................................................204 4.5 项目重整Refactoring................................................................................................205 4.6 调试、发布和运行...................................................................................................206 4.6.1 配置和运行.......................................................................................................206 4.6.2 Log调试信息的配置................................................................................................206 4.7 小结...............................................................................................................207 第5章 订阅信息系统.....................................................................................................209 5.1 需求分析...........................................................................................................209 5.2 架构设计...........................................................................................................209 5.2.1 Cache和Pool......................................................................................................210 5.2.2 EJB框架体系......................................................................................................211 5.2.3 架构图...........................................................................................................213 5.2.4 接口框架设计.....................................................................................................213 5.3 EJB详细设计和实现..................................................................................................214 5.3.1 业务对象建模.....................................................................................................215 5.3.2 开发环境配置.....................................................................................................216 5.3.3 CMP图形开发......................................................................................................217 5.3.4 实体Bean.........................................................................................................221 5.3.5 Facade Session Bean..............................................................................................229 5.3.6 Transfer Object模式..............................................................................................232 5.4 Web与EJB接口框架...................................................................................................233 5.4.1 框架的设计.......................................................................................................233 5.4.2 框架的实现.......................................................................................................235 5.4.3 框架的使用.......................................................................................................243 5.5 表现层的设计和实现.................................................................................................247 5.5.1 创建ActionForm...................................................................................................247 5.5.2 创建Action 类....................................................................................................248 5.5.3 创建JSP页面......................................................................................................248 5.6 调试配置和运行.....................................................................................................249 5.6.1 JBoss和MySQL的配置...............................................................................................250 5.6.2 JNDI配置.........................................................................................................251 5.6.3 部署和发布.......................................................................................................253 5.6.4 调试和测试.......................................................................................................254 5.7 小结...............................................................................................................254 第6章 用户安全管理系统.................................................................................................256 6.1 需求分析...........................................................................................................256 6.2 架构设计...........................................................................................................256 6.2.1 角色.............................................................................................................257 6.2.2 J2EE的JAAS.......................................................................................................257 6.2.3 单点登录.........................................................................................................259 6.2.4 邮件发送组件.....................................................................................................261 6.3 详细设计和实现.....................................................................................................261 6.3.1 业务对象建模.....................................................................................................261 6.3.2 数据库设计.......................................................................................................263 6.3.3 实体bean实现.....................................................................................................263 6.3.4 Session Bean实现.................................................................................................266 6.3.5 EJB容器安全配置..................................................................................................273 6.4 JMS 邮件发送组件...................................................................................................275 6.4.1 消息发送器.......................................................................................................276 6.4.2 MDB..............................................................................................................279 6.5 Web层的实现........................................................................................................282 6.5.1 用户资料管理.....................................................................................................282 6.5.2 Web容器安全配置..................................................................................................287 6.6 调试配置和运行.....................................................................................................289 6.6.1 JAAS配置.........................................................................................................290 6.6.2 邮件服务的配置...................................................................................................291 6.6.3 部署和发布.......................................................................................................292 6.7 小结...............................................................................................................292 第7章 EJB方法调用框架..................................................................................................294 7.1 框架概况...........................................................................................................294 7.1.1 远程调用技术背景.................................................................................................294 7.1.2 框架结构.........................................................................................................295 7.2 框架设计..........................................................................................................296 7.2.1 代理(Proxy)模式...............................................................................................296 7.2.2 动态代理........................................................................................................298 7.2.3 反射(Reflection)和方法调用....................................................................................300 7.2.4 HTTP协议和对象序列化............................................................................................302 7.2.5 框架设计图......................................................................................................304 7.2.6 HTTPSession和缓存机制...........................................................................................305 7.2.7 基于HTTP的安全机制..............................................................................................306 7.3 类的详细设计和实现................................................................................................309 7.3.1 基本业务对象....................................................................................................310 7.3.2 动态代理工厂....................................................................................................312 7.3.3 肥客户端/服务器架构下实现.......................................................................................315 7.3.4 Web层代理Servlet Proxy..........................................................................................322 7.3.5 浏览器/服务器架构下实现.........................................................................................324 7.3.6 核心代理Business Proxy实现......................................................................................327 7.4 框架的使用和调试..................................................................................................333 7.4.1 配置............................................................................................................333 7.4.2 浏览器/服务器架构下的应用.......................................................................................335 7.4.3 肥客户端/服务器架构下的应用.....................................................................................336 7.5 小结..............................................................................................................337 第8章 网上商店系统...................................................................................................338 8.1 系统需求和设计...................................................................................................338 8.1.1 基本业务对象...................................................................................................339 8.1.2 数据表设计.....................................................................................................340 8.2 数据操作通用框架.................................................................................................344 8.2.1 框架的提炼和设计...............................................................................................347 8.2.2 增、删、改、查框架实现.........................................................................................352 8.3 商品类别管理功能的实现...........................................................................................356 8.3.1 创建Session Bean................................................................................................357 8.3.2 EJB配置.........................................................................................................358 8.3.3 创建Category相关类实现..........................................................................................360 8.3.4 Web配置.........................................................................................................361 8.3.5 创建Category.jsp................................................................................................362 8.4 商品管理功能的实现................................................................................................364 8.4.1 创建ProductManager..............................................................................................364 8.4.2 EJB配置.........................................................................................................366 8.4.3 创建Product相关类实现...........................................................................................368 8.4.4 Web配置.........................................................................................................369 8.4.5 创建product.jsp.................................................................................................370 8.4.6 商品图片上传功能................................................................................................374 8.5 商品批量查询和多页显示............................................................................................376 8.5.1 DAO模式.........................................................................................................377 8.5.2 Strut框架下设计和实现...........................................................................................385 8.5.3 页导航条实现....................................................................................................388 8.6 购物车功能的实现..................................................................................................393 8.6.1 有状态Session Bean..............................................................................................393 8.6.2 Web功能实现.....................................................................................................396 8.7 小结..............................................................................................................399
Platform: | Size: 31514707 | Author: fengbozs@163.com | Hits:

[GDI-Bitmapremote control with database

Description: cpubbs论坛原创程序:用虚拟仪器labview制作的通过UDP网络协议远程控制并操作远程数据库,对虚拟仪器学习者学习网络通信及其远程控制和远程数据库操作都比较合适!转载请注明CPUBBS论坛原创信息!http://www.cpubbs.com-cpubbs Forum original procedure : Using LabVIEW virtual instruments produced by the UDP network protocol remote control and remote operation of the database, the virtual instrument Learners network communications and remote control and remote database operations are more appropriate! Please specify CPUBBS reproduced original message forum! Http://www.cpubbs.com
Platform: | Size: 163840 | Author: www.cpubbs.com | Hits:

[P2PliubingP2P

Description: 用UDP实现了p2p是的穿透,P2PServer运行在一个拥有公网IP的计算机上,P2PClient运行在两个不同的NAT后(注意,如果两个客户端运行在一个NAT后,本程序很可能不能运行正常,这取决于你的NAT是否支持loopback translation,详见http://midcom-p2p.sourceforge.net/draft-ford-midcom-p2p-01.txt,当然,此问题可以通过双方先尝试连接对方的内网IP来解决,但是这个代码只是为了验证原理,并没有处理这些问题),后登录的计算机可以获得先登录计算机的用户名,后登录的计算机通过send username message的格式来发送消息。如果发送成功,说明你已取得了直接与对方连接的成功。-achieved using UDP p2p is the piercing, P2PServer operation in a public IP with the computer, P2PClient running in two different NAT after (Note If two clients running on a NAT, the procedure may not be operating normally, It depends on whether you support the loopback NAT translation, see http :// midcom-p2p.sourceforge.net/draft-ford- midcom- p2p- 01.txt, of course, this problem can be made by the two sides try to connect with each other to resolve the IP network, but the code is to verify principle, not dealing with these issues), after the computer can log logged in a computer user name, after logged by the computer username send the message format to send information. If the success of this show that you have made a direct link with each other's success.
Platform: | Size: 31744 | Author: 刘冰 | Hits:

[Multimedia programvlc-0.8.6c.tar

Description: About: VideoLAN Client (VLC) is a media player, streamer, and encoder for Unix, Windows, Mac OS X, BeOS, QNX, and PocketPC. It can play most audio and video codecs (MPEG 1/2/4, DivX, WMV, Vorbis, AC3, AAC, etc.), has support for VCD, SVCD, and DVD (with menus), and can read or dump streams from a network source (HTTP, UDP, DVB, MMS, etc.). It can also act as a server and send streams through the network, with optional support for audio and video transcoding.
Platform: | Size: 16234496 | Author: 王磊 | Hits:

[P2PP2PCenter_last

Description: P2P点播直播开源项目是一个由Kevin发起,多人参与开发并不断更新,符合GPL开源协议的开源项目。 目的:缩短企业同类型项目开发周期,集成多种P2P协议,如BT,EMULE等。 主要功能: Peer 间传输数据采用UDP,能有效的穿透防火墙,在进一步的版本中将实现TCP及UPNP穿透 能够实现流媒体的点播及直播,还能共享其他文件,文件类型不限。 流媒体文件支持广泛,如rmvb,wmv,flv,mp4等 源代码下载论坛:http://opensource.kan8888.com 演示网站:http://www.skyvcd.com -P2P on-demand broadcast is an open source project initiated by Kevin, people involved in the development and continuously updated in line with the GPL open source open source project agreement. Objective: To shorten the enterprise with the type of project development cycle, integrating a wide range of P2P protocols such as BT, EMULE, etc.. Main functions: Peer between the transmission of data using UDP, can effectively penetrate the firewall, in a further version will be the realization of TCP and UPNP penetration can be achieved on-demand streaming media and broadcast, but also share other files, file types are not limited. Stream media files to support a wide range, such as rmvb, wmv, flv, mp4, such as source code download Forum: http://opensource.kan8888.com demo site: http://www.skyvcd.com
Platform: | Size: 4049920 | Author: 龙飞 | Hits:

[Internet-NetworkScreensdk

Description: 使用该开发包你可以在你的即时通讯启动中轻松实现类似QQ远程协助功能。 系统特点: 1、P2P方式连接,内网穿透,不通过服务器中转。 2、适应各种网络带宽,在极差的网络带宽下也可获得很好的传输效果。 3、真彩色屏幕共享,数据量特小,传输快。 5、操作使用简单,几个函数即可实现远程协助功能。 6、你不需要关心屏幕图像抓取,屏幕压缩网络传输等任何细节。 官方网站:http://www.enen6.com/?open=Ensueim.htm 开发包下载地址 http://www.enen6.com/downloads/NNScreensdk.rar 另外提供远程协助,文档共享,视频聊天室等开发包,欢迎联系。 本SDK(开发包)可免费测试使用,商用需要授权。 若需要更多的服务器容量(即同时在线量),你需要支付一定的授权费。 我很高兴能够收到您反馈的错误/建议, 我将在以后的版本中很快改进和实现. 本软件服务器使用网络UDP端口:9601 ============ 使用方法: 1、分别运行两个Demo客户端ScreenChatDemo.exe (A,B) 2、分别登陆服务器。(测试服务器221.130.184.152) 3、登陆成功后会显示客户端ID。 4、输入对方ID,开始连接。(如将A的客户端ID输入到B的对方ID框里) 5、连接成功后就可以开始通话。-err
Platform: | Size: 242688 | Author: yangyu | Hits:

[TCP/IP stack160955

Description: - IP Messenger is a pop up style message communication software for multi platforms. It is based on TCP/IP(UDP). - This software don t need server machine. - Simple, lightweight, and free software :-) - Win, Win16, Mac(Japanese only), X11R6, Java version and all source is open to public. You can get in the following URL. http://www.asahi-net.or.jp/~vz4h-sruz/ipmsg-eng.html-- IP Messenger is a pop up style message communication software for multi platforms. It is based on TCP/IP(UDP). - This software don t need server machine. - Simple, lightweight, and free software :-) - Win, Win16, Mac(Japanese only), X11R6, Java version and all source is open to public. You can get in the following URL. http://www.asahi-net.or.jp/~vz4h-sruz/ipmsg-eng.html
Platform: | Size: 246784 | Author: yg49594 | Hits:

[Software EngineeringdadaEnter

Description: OA 管理系统 ·本系统在一些大中型企业(跨多达24个区域)一直都在很好的服务过,主要在FTP 控制 UDP控制 HTTP控制 傁客户数据库 数据库 数据压缩加密方面进行了综合深入的应用.. -OA management system of the system in a number of large and medium-sized enterprises (up to 24 inter-regional) have been well served, mainly in the FTP control UDP control HTTP control傁customer database encryption database data compression carried out in depth the application of integrated ..
Platform: | Size: 970752 | Author: adu | Hits:

[SQL ServerOA123

Description: 本系统在一些大中型企业(跨多达24个区域)一直都在很好的服务过,主要在FTP 控制 UDP控制 HTTP控制 傁客户数据库 数据库 数据压缩加密方面进行了综合深入的应用 -The system in a number of large and medium-sized enterprises (up to 24 inter-regional) have been well served, mainly in the FTP control UDP control HTTP control傁customer database encryption database data compression carried out in depth the application of integrated
Platform: | Size: 20692992 | Author: 李维康 | Hits:

[Internet-NetworkMCHPTCPStack3.75

Description: pic 单片机tcp/ip协议堆栈 v3.75在此以后不支持rtl8019的驱动了,因为他有他自己的网络芯片ecn28j60了。代码很好值得学习特别是她的占用内存小,支持dhcp http服务以及udp等-pic Singlechip tcp/ip protocol stack at this after v3.75 do not support the RTL8019 driver because he has his own network of ecn28j60 chip. Code well worth learning, especially memory of her small, dhcp http support services, as well as udp, etc.
Platform: | Size: 2231296 | Author: 阿魏 | Hits:

[Internet-Networkvidc21_dll

Description: vIDC2.1使用说明 程序介绍: vIDC2.1是一个端口映射工具,主要包含如下功能: 1、代理服务功能,支持http/socks4/socks5代理,支持代理验证,支持udp代理,支持二级代理 2、本地端口映射,类似porttunnel功能,即将本地网络的任何应用服务端口映射到本程序运行的机器上, 应用服务客户端可通过映射端口访问应用服务,主要用在将内网服务端口,映射到网关上以便其他用户可以访问,当然前提是vIDC20必须运行在网关机器上。 3、端口映射vIDC功能,本程序包含vIDC服务和客户端两部分功能,既可以作为vIDC服务又可作为vIDC客户端工具。 在上面讲的映射内网应用服务到网关上,以便其他用户可以访问你的内网应用服务的前提是你的vIDC20必须运行在 网关的机器上,假如你无法在网关上运行vIDC20那么你如何让其他人访问你的内网服务呢?你可以通过vIDC20 讲本地的任何应用服务映射到任意一个vIDCs服务器上(即另外一个vIDC20所运行的机器),这样假如用户无法访问你网络里的某个应用服务 但他可以访问另外一个你能控制的机器,那么你就可以在他可以访问的机器上运行vIDC20,启动vIDCs服务。然后在你的应用服务所在的网络中 再运行一个vIDC20,通过此工具将你的应用服务映射到vIDCs上,这样用户就-vIDC2.1 use Introduce procedures: vIDC2.1 is a port mapping instrument, mainly contains the following functions: 1, agent service, support http/socks4/socks5 agent, agent Supporting authentication, support for udp agent, agent 2 Supported 2, the local port mapping, porttunnel similar features, the upcoming local network of any application service port mapping to the program is running on the machine, Application Services client access through port mapping applications, mainly used in network service port, mapped to the gateway so that other users can access, of course, the premise is vIDC20 must be running at the gateway machine. 3, port mapping vidc function, this process consists vidc services and functions of the two parts of the client, either as vidc Services client can be as vidc instrument. In the above mentioned mapping network application services on the gateway so that other users can access your network application services on the premise that you must be runni
Platform: | Size: 343040 | Author: qq | Hits:

[Ftp ClientTwisted_NoDocs-8.2.0.win32-py2.4

Description: Twisted是高性能面向通信的event-driven 网络引擎, 支持HTTP, NNTP, IMAP, SSH, IRC, FTP, and others-Twisted is an event-driven networking engine written in Python and licensed under the MIT license. Twisted projects variously support TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols (including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more.
Platform: | Size: 2361344 | Author: richard | Hits:

[P2Pp2framework_src.2.1.0.2.tar

Description: P2Framework是一个开源项目。这是一个高效率的平台,使分布式系统的开发变得更加容易。通过这一平台,你可以忘记许多烦恼和琐碎的事情在分布式系统的开发(如NAT /防火墙穿越,的UDP / TCP协议的交换机等) 。 主要的重点是在这个框架内,以减轻P2P的连接建立,数据和信息传输。与P2Framework ,开发商不需要照顾NAT穿越,防火墙/代理问题,可靠性的UDP和TCP短期发送/接收的问题(等)的点对点环境。例如,可能同行后面的NAT或使用HTTP代理上网。另一个例子是,开发商可能要处理UDP和TCP连接以同样的方式,例如,一个可能需要可以传递信息的UDP和TCP可靠传输数据块的块,而不是流。在P2Framework ,各种连接建立和数据传输的封装几乎相同的接口。您可以使用混合连接P2Framework来确定最佳连接你喜欢同伴之间。此外,所有的网络业务的非块P2Framework其中只有运行signle线程。因此,开发商不需要使用互斥。和P2Framework可以建立在双方的Win32和Linux平台。-P2Framework is an open source project. It is a highly efficient platform for making distributed system development much easier. With this platform, you can forget many annoying and trivial things in the distributed system development (such as NAT/firewall traversal, udp/tcp protocol switch, etc.). The main focus on this framework is to ease the P2P connection establishment, data and message transmission. With P2Framework, the developers do not need to care NAT traversal, firewall/proxy problem, UDP reliability and TCP short send/receive problem (etc.) in peer-to-peer environment. For example, peers may behind NAT or uses a http proxy to access Internet. Another example is that the developers may want handle UDP and TCP connections in the same way, such as, one may want to UDP can transmit messages reliably and TCP can transmit data block by block rather than stream. In P2Framework, all kinds of connection establishment and data transmission are encapsulated as almost the same interfac
Platform: | Size: 1231872 | Author: 董巍 | Hits:

[Audio programThe_Speex_Codec_Manual_Version_1.2_Beta_3

Description: Speex是一套开源的专门压缩声音的库,压缩的性能非常高,常用在VoIP或者其它网络程序中。Speex声称自己是不受任何专利限制,并授权根据修订后的BSD许可证发布。它可以用来与Ogg容器格式或直接在UDP / RTP协议下传输。 这份是Speex的编码手册英文版,下面的地址是维基百科中关于Speex的介绍: http://en.wikipedia.org/wiki/Speex-Speex is a free software speech codec that may be used on VoIP applications and podcasts. Speex claims to be free of any patent restrictions and is licensed under the revised (3-clause) BSD license. It may be used with the Ogg container format or directly transmitted over UDP/RTP. The Speex designers see their project as complementary to the Vorbis general-purpose audio compression project. Speex is a lossy format, meaning quality is permanently degraded to reduce file size.
Platform: | Size: 410624 | Author: 瞿志超 | Hits:

[OtherMC9S12NE64OpenTCP_refman

Description: opentcp是开源的嵌入式TCP/IP协议栈,适用于MC9S12NE64,包含了arp,icmp,ip,udp,tcp,http等协议,本文档是opentcp的帮助文档-OpenTCP TCP/IP Stack for MC9S12NE64 Documentation
Platform: | Size: 676864 | Author: 曹领 | Hits:

[FlashMXjiuye1

Description: 很好的网站 [asp与sql网页数据库程序设计.rar] - 好书啊。关于ASP的新书 [全球办公自动化系统源代码.rar] - 本系统在一些大中型企业(跨多达24个区域)一直都在很好的服务过,主要在FTP 控制 UDP控制 HTTP控制 傁客户数据库 数据库 数据压缩加密方面进行了综合深入的应用 [jiuye.rar] - 一款不错的就业管理系统,采用visual basic制作,里面附带有程序员代码,共大家参考。 [qzoa.rar] - 开发此程序用于分人事、工资、进货、销售、存货、资金管理等功能. [TranPinyin.rar] - 一个用查表法实现的根据汉字串生成拼音码的程序,我看过网上很多这种代码,但其实都有问题,对于码表后面的汉字就不能正确处理 -verygood
Platform: | Size: 1138688 | Author: 尼晓河 | Hits:

[Windows Developreliable_UDP

Description: 用C写的可信赖UDP协议,支持断点续传。-Written by C ,a reliable UDP protocol to support HTTP.
Platform: | Size: 9523200 | Author: 王帅 | Hits:

[Windows Developudp_java

Description: 用JAVA写的可信赖UDP协议,支持断点续传。-A reliable UDP protocol to support HTTP written using JAVA.
Platform: | Size: 490496 | Author: 王帅 | Hits:

[Internet-Networkudpxy-1.0-Chipmunk-12

Description: small-footprint UNIX/Linux daemon to relay multicast UDP traffic to client s TCP (HTTP) connection
Platform: | Size: 96256 | Author: chenchen | Hits:
« 1 2 3 4 5 6 78 9 10 11 »

CodeBus www.codebus.net